.header {
  position: absolute;
  top: 110px;
  width: 100%;
  z-index: 10000;
}

.header__container {
  max-width: 1420px;
  padding: 0 15px;
}

.header__nav,
.header__row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.header__nav {
  max-width: 890px;
  border-radius: 40px;
  box-shadow: -22.6px 22.6px 13px 0 rgba(37,33,34,.17);
  background-color: #fefefe;
  padding: 18px 63px;
  position: relative;
}

.header__nav :hover {
  text-shadow: 0 0 .9px #333,0 0 .9px #333,0 0 .9px #333;
}

.header__link {
  font-size: 1rem;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: .06px;
  text-align: left;
  color: #000;
}

.header__searchbar {
  position: relative;
  max-width: 320px;
  width: 100%;
}

.header__icon {
  display: flex;
  width: 100%;
  left: 23px;
  bottom: 17px;
  position: absolute;
  width: 30px;
  height: 30px;
}

.header__icon img {
  width: 100%;
  height: 100%;
}

.header__input {
  width: 100%;
  display: block;
  border-radius: 40px;
  box-shadow: -22.6px 22.6px 13px 0 rgba(37,33,34,.17);
  background-color: #fefefe;
  font-family: Montserrat;
  padding: 18px 0;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: .06px;
  text-align: left;
  color: #b0b1b3;
  font-size: 1rem;
  text-align: center;
}

.header__burger {
  display: none;
}

@media (max-width:1135px) {
  .header__nav {
    max-width: 590px;
  }
}

@media (max-width:992px) {
  .header__searchbar {
    max-width: 250px;
  }

  .header__input,
  .header__nav {
    padding: 12px 30px;
  }

  .header__icon {
    bottom: 8px;
  }
}

@media (max-width:767px) {
  .header {
    top: 25px;
  }

  .header__input {
    padding: 18px 0;
  }

  .header__searchbar {
    padding: 12px 15px;
    max-width: 200px;
  }

  .header__icon {
    bottom: 26px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-around;
    margin-top: 0;
    padding: 0 30px;
    align-items: start;
    border-radius: 0;
    top: -100%;
    transition: all .3s ease;
    z-index: -1;
  }

  .header__nav.active {
    margin-top: 110px;
    top: 0;
  }

  .header__link {
    font-size: 2rem;
  }

  .header__burger {
    display: block;
    position: relative;
    width: 50px;
    height: 40px;
    z-index: 10;
  }

  .header__burger:after,
  .header__burger:before {
    content: "";
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 5px;
    left: 0;
    transition: all .3s ease;
  }

  .header__burger:before {
    top: 0;
  }

  .header__burger:after {
    bottom: 0;
  }

  .header__burger span {
    top: 18px;
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 5px;
    left: 0;
    transition: all .3s ease;
  }

  .header__burger.active:before {
    transform: rotate(45deg);
    top: 18px;
  }

  .header__burger.active:after {
    transform: rotate(-45deg);
    bottom: 18px;
  }

  .header__burger.active span {
    display: none;
  }
}